home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / Fight / turtlesNinja.swf / scripts / DefineButton2_147 / BUTTONCONDACTION on(release).as
Text File  |  2006-05-08  |  631b  |  27 lines

  1. on(release){
  2.    _root.intro.entercheats._visible = false;
  3.    if(_root.showEm)
  4.    {
  5.       trace("showEm");
  6.       _root.showCheats();
  7.    }
  8.    if(_root.gameOver == false)
  9.    {
  10.       trace("restarting at same level");
  11.       this.hideMe();
  12.       _root.scripts.resetGame(_root.level);
  13.       _root.gameStatus = "ready";
  14.       _root.sounder.gotoAndPlay("starter");
  15.       _root.gameOn = true;
  16.    }
  17.    else
  18.    {
  19.       trace("restarting at new game");
  20.       _root.scripts.newGame();
  21.       _root.scripts.resetGame(_root.level);
  22.       _root.gameStatus = "ready";
  23.       this.hideMe();
  24.       _root.gameOn = true;
  25.    }
  26. }
  27.